home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 June / Chip_2004-06_cd1.bin / software / tsw / tsw.exe / {app} / scripts / phpmultilinecomment.tss < prev    next >
Text File  |  2003-07-09  |  229b  |  15 lines

  1. {
  2. [Scriptsettings]
  3. Scriptname=PHP multiline comment
  4. ExecuteOnStartup=0
  5. ExecuteOnlyOnce=0
  6. }
  7. program PHPMultilineComment;
  8.  
  9. var
  10.  Code: string;
  11. begin
  12.  Code := '/*'+#13#10+GetSelText+#13#10+'*/';
  13.  SetSelText(Code);
  14. end.
  15.